home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 12
/
CU Amiga Magazine's Super CD-ROM 12 (1997)(EMAP Images)(GB)[!][issue 1997-07].iso
/
CUCD
/
Games
/
DestructivePoker
/
sources
/
sources.lha
/
junkpile.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-13
|
472b
|
21 lines
/*
junkpile.h
V1.00 - 151096 Kimmo Teräväinen
----- ------ ----------------
V0.01 111196 Taken away from handpile.h
V0.10 201196 Improved cCardPile, so junkpile is actually same
as cCardPile.
*/
#ifndef DC1_POKER_JUNKPILE
#define DC1_POKER_JUNKPILE
#include "cardpile.h"
class cJunkPile : public cCardPile {
public:
cJunkPile(int lkm=52,int x=500,int y=50) : cCardPile(lkm,x,y) { }
};
#endif